home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / source14 / read.me next >
Text File  |  1995-12-22  |  2KB  |  56 lines

  1. You are free to distribute and use these files as you wish.
  2. Please email any comments/enhancements to cbrooksbank@cix.compulink.co.uk
  3.  
  4. This pack consists of the following files :
  5. READ.ME        You're reading it !
  6. RRSQLINT.PAS   The Delphi DLL interface
  7. REPORTRR.PAS   The Delphi visual component
  8.  
  9. Future Stuff (as time allows) : 
  10. 1. Although the visual component now allows you to view fields/sort-fields
  11.    and group fields it doesnt write back any changes to the report.
  12. 2. Better VCL component to follow, unless someone beats me to it !
  13.    i.e. more properties, custom property editors.
  14. 3. Delphi encapsulation of R&R open scripting. Design the reports in your
  15.    Delphi application as well as running them.
  16. 4. Encapsulating batches of reports.
  17.  
  18.  
  19. Installation Instructions
  20. -------------------------
  21. Install your copy of R&R Report Writer - SQL Edition V6 !
  22.  
  23. 1. Copy the two .PAS files to a suitable directory ( the same one )
  24. 2. Start Delphi
  25. 3. Select Options menu,Install Components,Add,Browse,REPORTRR.PAS.
  26. 4. Select OK, dont save changes and Delphi compiles the unit into your
  27.    library.
  28. 5. Thats it. You now have a new component on your data access tab.
  29.  
  30.  
  31. Quick Start
  32. -----------
  33.  
  34. 1. File menu, new project, dont save changes.
  35. 2. Drag a ReportRR component onto the form
  36. 3. Select the ReportRR component and type a existing report library name
  37.    into the ReportLibrary property
  38. 4. Type a existing report name into the Reportname property.
  39.  
  40. Now we need to be able to fire off the report by clicking a button:
  41.  
  42. 5. Put a button on the form, change the caption to 'Run Report'.
  43. 6. Double click on the button to access the code editor.
  44. 7. Type : ReportRR1.Execute;
  45. 8. Press F9. Click the button and if all is well the report will appear
  46.    on your screen.
  47.  
  48. Limitations
  49. -----------
  50.  
  51. Component not finished. Not all properties published. No way to view
  52. current report settings. Only one method execute.
  53.  
  54. However add rrsqlint to a uses clause in a project and you have access to
  55. all the R&R DLL functions.
  56.